home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / gtk-2.0 / gtk / gtkmodules.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-04-25  |  1.5 KB  |  51 lines

  1. /* GTK - The GIMP Toolkit
  2.  * Copyright 1998-2002 Tim Janik, Red Hat, Inc., and others.
  3.  * Copyright (C) 2003 Alex Graveley
  4.  *
  5.  * This library is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Lesser General Public
  7.  * License as published by the Free Software Foundation; either
  8.  * version 2 of the License, or (at your option) any later version.
  9.  *
  10.  * This library is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * Lesser General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU Lesser General Public
  16.  * License along with this library; if not, write to the
  17.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  18.  * Boston, MA 02111-1307, USA.
  19.  */
  20.  
  21. #ifndef __GTK_MODULES_H__
  22. #define __GTK_MODULES_H__
  23.  
  24. #include <gtk/gtksettings.h>
  25.  
  26.  
  27. G_BEGIN_DECLS
  28.  
  29.  
  30. /* Functions for use within GTK+
  31.  */
  32. gchar * _gtk_find_module        (const gchar *name,
  33.                      const gchar *type);
  34. gchar **_gtk_get_module_path    (const gchar *type);
  35.  
  36. void    _gtk_modules_init             (gint         *argc,
  37.                        gchar      ***argv,
  38.                        const gchar  *gtk_modules_args);
  39. void    _gtk_modules_settings_changed (GtkSettings  *settings, 
  40.                        const gchar  *modules);
  41.  
  42. typedef void     (*GtkModuleInitFunc)        (gint      *argc,
  43.                           gchar      ***argv);
  44. typedef void     (*GtkModuleDisplayInitFunc) (GdkDisplay   *display);
  45.  
  46.  
  47. G_END_DECLS
  48.  
  49.  
  50. #endif /* __GTK_MODULES_H__ */
  51.